home *** CD-ROM | disk | FTP | other *** search
/ Max Special: Max Gallery / Max Special Gallery.iso / pc / menuag.dir / 00020.ls < prev    next >
Encoding:
Text File  |  1997-04-03  |  751 b   |  41 lines

  1. on startMovie
  2.   global etichettaFrame
  3.   set etichettaFrame to EMPTY
  4.   hideMaxMenu()
  5.   doMusicGeneral()
  6. end
  7.  
  8. on idle
  9.   testMaxRollover()
  10.   testQuitRollover()
  11. end
  12.  
  13. on flashRoller whichSprite, numCast, scriptToExecute
  14.   puppetSprite(whichSprite, 1)
  15.   set myCast to numCast
  16.   set the memberNum of sprite whichSprite to myCast + 1
  17.   updateStage()
  18.   do(scriptToExecute)
  19. end
  20.  
  21. on disabilitaTutto inf, sup
  22.   repeat with i = inf to sup
  23.     puppetSprite(i, 0)
  24.     set the cursor of sprite i to -1
  25.   end repeat
  26. end
  27.  
  28. on abilitaTutto inf, sup
  29.   repeat with i = inf to sup
  30.     puppetSprite(i, 1)
  31.   end repeat
  32. end
  33.  
  34. on disabilitaAltri whichSprite, inf, sup
  35.   repeat with i = inf to sup
  36.     if i <> whichSprite then
  37.       puppetSprite(i, 0)
  38.     end if
  39.   end repeat
  40. end
  41.